home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / EOT_Rotate.ifx.pre < prev    next >
Text File  |  1996-03-02  |  1KB  |  46 lines

  1. /*
  2.  * EOT_Rotate.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * 2D Rotation.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_Rotate_'
  19.  
  20. x1    = GETCLIP(base||'x1')
  21. y1    = GETCLIP(base||'y1')
  22. a1    = GETCLIP(base||'a1')
  23. a2    = GETCLIP(base||'a2')
  24.  
  25. IF x1 = "" THEN x1 = -1
  26. IF y1 = "" THEN y1 = -1
  27. IF a1 = "" THEN a1 = 0
  28. IF a2 = "" THEN a2 = 360
  29.  
  30. Gadget.1 = 'INTEGER 200  5 50 14 "Center of Rotation X:"' x1
  31. Gadget.2 = 'INTEGER 300  5 50 14 "Y:"' y1
  32. Gadget.3 = 'INTEGER 200 20 50 14 "Angle Start:"' a1
  33. Gadget.4 = 'INTEGER 300 20 50 14 "End:"' a2
  34. Gadget.5 = 'TEXT    215 36  1  1 "(-1,-1 selects the exact center of the image.)" JU=2'
  35. Gadget.6 = 'END'
  36.  
  37. NewComplexRequest '"2D Rotation"' Gadget 430 50
  38. IF rc ~= 0 THEN EXIT rc
  39.  
  40. CALL SETCLIP(base||'x1', result.1)
  41. CALL SETCLIP(base||'y1', result.2)
  42. CALL SETCLIP(base||'a1', result.3)
  43. CALL SETCLIP(base||'a2', result.4)
  44.  
  45. EXIT
  46.